home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Najgorsze komunikatory / PSI / psi-0.10-win-setup.exe / certs / README next >
Text File  |  2006-01-11  |  645b  |  22 lines

  1. This directory contains XML files that have SSL certificates in them.
  2. There should be at least a rootcert.xml file, but you can add more
  3. files if you want.
  4.  
  5. The format is simple, there is one <store> element in each file, with
  6. any number of <certificate> child elements.  In each certificate, there
  7. is a <data> tag to contain the certificate data.  Example:
  8.  
  9.   <store>
  10.     <certificate>
  11.       <data>Lots of nice data here</data>
  12.     </certificate>
  13.     <certificate>
  14.       <data>Data of another cert</data>
  15.     </certificate>
  16.     ...
  17.   </store>
  18.  
  19. The data is DER+Base64 format, which is basically PEM but without the
  20. header, footer, or newlines.
  21.  
  22.